home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / setbuffer.c,v < prev    next >
Text File  |  1991-12-02  |  2KB  |  114 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.07.28.17.18.45;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.10.16.23.58;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.02.20.02.23;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @More lint.
  32. @
  33. text
  34. @/* 
  35.  * setbuffer.c --
  36.  *
  37.  *    Source code for the "setbuffer" library procedure.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: setbuffer.c,v 1.1 88/06/10 16:23:58 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include "stdio.h"
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * setbuffer --
  59.  *
  60.  *    Reset the buffering strategy to use for stream.
  61.  *
  62.  * Results:
  63.  *    None.
  64.  *
  65.  * Side effects:
  66.  *    If buf is NULL, stream will be unbuffered from now on.  Otherwise,
  67.  *    buf will be used as the buffer for stream.
  68.  *
  69.  *----------------------------------------------------------------------
  70.  */
  71.  
  72. void
  73. setbuffer(stream, buf, size)
  74.     FILE *stream;        /* Stream to be re-buffered. */
  75.     char *buf;            /* New buffer to use for stream.   NULL means
  76.                  * make stream unbuffered.  Otherwise, this
  77.                  * space must persist until the stream is
  78.                  * closed or rebuffered. */
  79.     int size;            /* Number of bytes of storage space at
  80.                  * buf. */
  81. {
  82.     if (buf == 0) {
  83.     (void) setvbuf(stream, (char *) 0, _IONBF, 1);
  84.     } else {
  85.     (void) setvbuf(stream, buf, _IOFBF, size);
  86.     }
  87. }
  88. @
  89.  
  90.  
  91. 1.2.1.1
  92. log
  93. @Initial branch for Sprite server.
  94. @
  95. text
  96. @d17 1
  97. a17 1
  98. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/setbuffer.c,v 1.2 88/07/28 17:18:45 ouster Exp $ SPRITE (Berkeley)";
  99. @
  100.  
  101.  
  102. 1.1
  103. log
  104. @Initial revision
  105. @
  106. text
  107. @d17 1
  108. a17 1
  109. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  110. d50 1
  111. a50 1
  112.     (void) setvbuf(stream, 0, _IONBF, 1);
  113. @
  114.